home *** CD-ROM | disk | FTP | other *** search
/ What PC? 2000 May / What PC May 2000 / wpcmay00.iso / SOFTWARE / UTILITY / vvho52uk / VIAVOICE.Z / digits.bnf < prev    next >
Text File  |  1998-07-09  |  797b  |  32 lines

  1. ;; ========= digits =========
  2.  
  3. <digits> = <dg>+ |
  4.            <dg>+ point:"digits_." <dg>+ 
  5.        .
  6.  
  7. <dg> = <single-digit> |
  8.        <repeat> <single-digit> 
  9.        .
  10.  
  11. <single-digit> = oh:"digits_0"    |
  12.                  zero:"digits_0"  |
  13.                  nought:"digits_0" |
  14.                  one:"digits_1"   |
  15.                  two:"digits_2"   |
  16.                  three:"digits_3" |
  17.                  four:"digits_4"  |
  18.                  five:"digits_5"  |
  19.                  six:"digits_6"   |
  20.                  seven:"digits_7" |
  21.                  eight:"digits_8" |
  22.                  nine:"digits_9" 
  23.          .
  24.  
  25. <repeat> = double:"digits_#2" |
  26.            triple:"digits_#3" |
  27.            treble:"digits_#3" 
  28.        .
  29.  
  30. //NMC:VISIBLE
  31. ;; the above command is for the nav-macro-editor
  32.